home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmigaPlus / AmigaOS / Aplus_Dev / AP-Website / links / admin / index.php < prev    next >
Encoding:
PHP Script  |  2002-10-28  |  932 b   |  26 lines

  1. <?
  2. // *******************************************************************
  3. //  admin/index.php
  4. // *******************************************************************
  5.  
  6. include("../include/config.php");
  7. include("../include/functions.php");
  8. include("../include/common.php");
  9. $language = $gl["Language"];
  10. include("../include/lang/$language.php");
  11. include("../include/session.php");
  12. session_start();
  13. ?>
  14. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
  15.     "DTD/xhtml1-frameset.dtd">
  16.  
  17. <html>
  18.     <head>
  19.         <title>phpLinks Admin</title>
  20.     </head>
  21.     <frameset cols="160,*">
  22.         <frame name="menu" src="menu.php?<?=session_name()?>=<?=session_id()?>" scrolling="auto" marginwidth="10" marginheight="10" topmargin="10" leftmargin="10" />
  23.         <frame name="main" src="main.php?<?=session_name()?>=<?=session_id()?>" scrolling="auto" marginwidth="10" marginheight="10" topmargin="10" leftmargin="10" />
  24.     </frameset>
  25. </html>
  26.